-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
DOC: Typo(s?) in pandas.DataFrame.isin #43820
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Varun270
commented
Sep 30, 2021
- [🗸] closes DOC: Typo(s?) in pandas.DataFrame.isin #43755
- [🗸] tests added / passed
- [🗸] Ensure all linting tests pass, see here for how to run them
- [🗸] whatsnew entry
pandas/core/frame.py
Outdated
... index=['spider', 'falcon']) | ||
>>> df.isin(other) | ||
num_legs num_wings | ||
falcon True True | ||
falcon False True |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nitpick can you line these up (as would happen in the terminal)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you want me to adjust True
and False
in line 10572?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think jeff means deleting one whitespace between falcon and false
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Understood , I am force pushing the suggested changes
@jreback I did the changes you suggested, you can review them. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lgtm
thanks @Varun270 |